/* logistics.css - Bespoke Architecture */

.unique-logistics {
    background-color: var(--primary-dark, rgb(13, 13, 36));
    color: white;
}

.logistics-pipeline {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

@media screen and (max-width: 768px) {
    .logistics-pipeline {
        flex-direction: column;
        gap: 60px;
    }
}

.pipeline-track {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: rgba(255, 107, 107, 0.3);
    z-index: 0;
}

@media screen and (max-width: 768px) {
    .pipeline-track {
        top: 0;
        bottom: 0;
        left: 50px;
        right: auto;
        width: 4px;
        height: 100%;
    }
}

.pipeline-node {
    position: relative;
    z-index: 1;
    width: 300px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .pipeline-node {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 30px;
    }
}

.p-icon {
    width: 80px;
    height: 80px;
    background: #ff6b6b;
    border: 5px solid rgb(13, 13, 36);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    transition: transform 0.3s;
}

.pipeline-node:hover .p-icon {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .p-icon {
        margin: 0;
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

.p-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.p-text p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
